home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 06-04.BAS < prev    next >
BASIC Source File  |  1991-06-06  |  299b  |  23 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. NewMode = FGautomode
  7. FGsetmode NewMode
  8. FGinitw
  9. FGsetworld -10.0, 10.0, -10.0, 10.0
  10.  
  11. FGsetcolor 15
  12. FGmovew 0.0, 10.0
  13. FGdraww 0.0, -10.0
  14. FGmovew -10.0, 0.0
  15. FGdraww 10.0, 0.0
  16.  
  17. FGwaitkey
  18.  
  19. FGsetmode OldMode
  20. FGreset
  21.  
  22. END
  23.